home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1442 / spawn.doc next >
Text File  |  1995-11-30  |  3KB  |  119 lines

  1. This program is a freely distributable program as long as you include
  2. this document file.  You may use it for free.
  3.  
  4. I am however, a shareware author who has available:
  5.  
  6. SPACE- Reports on directory space usage for next level
  7. subdirectories.
  8.  
  9. DIRSIZE - Reports on directory space usage for all subdirectories.
  10.  
  11. DELFILE - Deletes nested subdirectories.
  12.  
  13. SDIR - Finds files in a directory tree.
  14.  
  15. EXEFIND - Finds and runs .EXE files.
  16.  
  17. PTIME - Reports time taken to run a DOS program.
  18.  
  19. EXEBAT - Runs a program in all next-level directories.
  20.  
  21. DATEFIND - Finds files between specified dates.
  22.  
  23. FIND-IT - A GUI version of SPACE, which produces a report on disk
  24. usage along with a pie chart.  It also searches for files by
  25. wildcard, by file date or for some text it contains.  You can launch
  26. the files found by double clicking on them.
  27.  
  28. All of these programs were written to help me administer
  29. LANs.  They are also very useful to any user as disk
  30. drives get bigger and more unmanageable.
  31.  
  32. FREECELL Game - I was bummed that the Windows 95 freecell game didn't
  33. have drag and drop features, so I wrote my own.  It is a full featured
  34. freecell game with animation and scoring that works in all versions of
  35. Windows.
  36.  
  37. CALENDAR - A GUI calendar that lets you put in notes on any day and
  38. print monthly calendars.  It is my answer to other PIM's that
  39. are so bloated with unnecessary features and slow that they are
  40. impossible to use.
  41.  
  42. You will get all of these with no Shareware reminder screens for $20.00.
  43. Pretty good deal huh?
  44.  
  45. If you have any questions or want shareware copies, please E-Mail:
  46.  
  47. mestevens@aol.com
  48.  
  49. **********************************************************************
  50.  
  51. If you want to order, please send this information and a check for $20.00
  52. ($30.00 Non-US).
  53.  
  54. Quantity:
  55.  
  56. Total enclosed:
  57.  
  58. Ship To:
  59.  
  60. Name:
  61.  
  62. Company:
  63.  
  64. Address:
  65.  
  66. City:
  67.  
  68. State:
  69.  
  70. Zip:
  71.  
  72. Country:
  73.  
  74. Where did you receive shareware version?
  75.  
  76.  
  77. Comments/Suggestions?
  78.  
  79.  
  80.   Please make checks payable to: Michael E. Stevens
  81.  
  82.  
  83.   Please mail with payment to:
  84.  
  85.   Michael Stevens
  86.   38 Canterbury Dr.
  87.   Durham, CT USA  06422
  88.   Phone: (203) 349-8523
  89.  
  90.   Thanks for your order!
  91.  
  92. **********************************************************************
  93.  
  94. **********************************************************************
  95. Spawn 1.0 - Copyright(c), 1995, Michael Stevens, All Rights Reserved.
  96.  
  97. Spawn documentation
  98.  
  99. This program will spawn a new instance of a program from a Windows 95
  100. or Windows NT command prompt and run it in the background.  It can be 
  101. used in batch files to run many tasks in parallel.
  102.  
  103. For example, to XCOPY one directory to another, you can type:
  104.  
  105. spawn xcopy c:\dir1 c:\dir2 /s /e
  106.  
  107. When redirecting output to a text file or redirecting input from a text 
  108. file using the < or > operators, you must use double quotes around the 
  109. command.  Otherwise, they are not needed.
  110.  
  111. For example, in order to produce a file which contains all the files on 
  112. your hard drive, type:
  113.  
  114. spawn "dir c:\*.* /s > allfiles.txt"
  115.  
  116. Spawn will run the dir command in the background and immediately give 
  117. control back to the running command shell so you can continue with 
  118. other tasks.
  119.